home *** CD-ROM | disk | FTP | other *** search
- Path: wmin.ac.uk!usenet
- From: Idoia Lertxundi <gsoec@wmin.ac.uk>
- Newsgroups: comp.lang.c
- Subject: Modularity issue, head pointer of embeded structures/linked lists
- Date: 27 Mar 1996 16:03:56 GMT
- Organization: Westminster University
- Message-ID: <4jbotc$ble@badger.wmin.ac.uk>
- NNTP-Posting-Host: ux208.wmin.ac.uk
- Mime-Version: 1.0
- Content-Type: multipart/mixed;
- boundary="-------------------------------273939021825479831922172572"
- X-Mailer: Mozilla 1.1N (X11; I; SunOS 4.1.3_U1 sun4m)
- X-URL: news:comp.lang.c
-
- This is a multi-part message in MIME format.
-
- ---------------------------------273939021825479831922172572
- Content-Transfer-Encoding: 7bit
- Content-Type: text/plain; charset=us-ascii
-
- Hello c strugglers,
-
- I have done this function which reads properly but when outputing the list
- I need it to output the first allocated structure first before the last one
- linked to this one. I mean the first element in each of the linked list rather
- than the last one read. With the first linked list element it seems it works
- thanks to the top pointers declared but the rest goes to pot.
-
- Here goes the code. It seems it is not possible. Maybe
- if I practiced some Modularity it can works. Solidarity emails to me and to
- the group please.
-
- e-mail: gsoec@wmin.ac.uk
-
- OUTPUT:
- The stored course list is:
-
- [BSc (Hons)] [Artificial Intelligence] course code: [1]
-
- Number of optional modules [2]
- Number of free electives modules [1]
-
- == Displaying Frame List =======================================
- ------------------------------------------------
- For semester [one] at level [1]: * CORECT STARTS FROM SEMESTER ONE *
- ------------------------------------------------
-
- Core modules:
-
-
- Optional modules:
-
- ------------------------------------------------
- For semester [two] at level [1]:
- ------------------------------------------------
-
- Core modules:
-
-
- Optional modules:
-
-
-
- Display next number spec
-
- Number of optional modules [3]
- Number of free electives modules [1]
-
- == Displaying Frame List =======================================
- ------------------------------------------------
- For semester [two] at level [2]: * WRONG STARTS FROM SEMESTER TWO *
- ------------------------------------------------
-
- Core modules:
-
-
- Optional modules:
-
- ....
-
- COURSE *ReadCourse(void)
- {
- FILE * fp;
- int c, i;
- COURSE * cl;
- COURSE * topc;
- FRAME * topf;
- NUMBER_SPEC * topn;
-
- char award[15];
- char course_name[30];
- char course_code[3];
- char semester[4];
- char level[3];
- char optional_no[2];
- char free_electivesno[2];
-
- cl = AllocateCourse();
- topc = cl;
- topn = cl->numberspec;
- topf = cl->numberspec->framep;
-
- fp = fopen("course.db", "r");
- if (fp == (FILE * )NULL) {
- printf("Error reading course data file\n");
- exit(0);
- } /* end of if */
-
- c = fgetc(fp);
- while (!feof(fp)) {
-
- i = 0;
- /* Read award */
- while (c != '\t' && !feof(fp)) {
- if (i < 14) {
- award[i] = c;
- i++;
- } /* end of if */
- c = fgetc(fp); /* skip tab */
- } /* end of while */
-
- award[i] = NULL;
- strcpy(cl->award, award);
- printf("the award is [%s]\n", cl->award);
-
- i = 0;
- /* Read course name */
- c = fgetc(fp);
- while (c != '\t' && !feof(fp)) {
- if (i < 29) {
- course_name[i] = c;
- i++;
- } /* end of if */
- c = fgetc(fp); /* skip tab */
- } /* end of while */
- course_name[i] = NULL ;
- strcpy(cl->course_name, course_name);
- printf("the course name is %s\n", cl->course_name);
-
- i = 0;
- /* Read course code */
- c = fgetc(fp);
- while (c != '\n' && !feof(fp)) {
- /* read course code */
- if (i < 2) {
- course_code[i] = c;
- i++;
- } /* end of if */
- c = fgetc(fp); /* skip new line*/
- }/* end of while */
-
- course_code[i] = NULL;
- strcpy(cl->course_code, course_code);
- printf("the course code is %s\n", cl->course_code);
-
- c = fgetc(fp);
- while (c != '#' && !feof(fp))
- {
- printf("\n***11111the semester of the allocated is:
- [%s]\n\n",cl->numberspec->framep->semester);
- i = 0;
- /* Read optional modules number */
- while (c != '\t' && !feof(fp))
- {
- if (i < 1){
- optional_no[i] = c;
- i++;
- } /* end of if */
- c = fgetc(fp); /* skip tab */
- }/* end of while */
-
- optional_no[i] = NULL;
- cl->numberspec->optional_no = atoi(optional_no);
- printf("the number of optionals is [%d]\n", cl->\
- numberspec->optional_no);
- i = 0;
- c = fgetc(fp);
- /* Read free electives number */
- while ( c != '\n' && !feof(fp))
- {
- if (i < 1){
- free_electivesno[i] = c;
- i++;
- } /* end of if */
- c = fgetc(fp); /* skip new line */
- }/* end of while */
- free_electivesno[i] = NULL;
- cl->numberspec->free_electivesno = atoi(free_electivesno);
- printf("the number of free eletives
- [%d]\n",cl->numberspec\
- ->free_electivesno);
-
- c = fgetc(fp); /* get semester */
- /* Read semester and level */
- while (c != '@' && c!='#' && !feof(fp))
- {
- i = 0;
- /* Read semester */
- while (c != '\t' && !feof(fp))
- {
- if (i < 4){
- semester[i] = c ;
- i++;
- } /* end of if */
- c = fgetc(fp);
- } /* end of while */
-
- if (feof(fp)){ /* Reached end of file (EOF) */
- break;
- } /* end of if */
- semester[i] = NULL;
- strcpy(cl->numberspec->framep->semester,\
- semester);
-
- printf("the semester is [%s]\n", cl->numberspec\
- ->framep->semester);
- i = 0;
- /* Read level first character */
- c = fgetc(fp);
-
- /* Read level */
- while (c != '\n' && !feof(fp))
- {
- if (i < 1){
- level[i] = c;
- i++;
- } /* end of if */
- c = fgetc(fp); /* skip new line */
- } /* end of while */
- level[i] = NULL;
- strcpy(cl->numberspec->framep->level, level);
- printf("the level is [%s]\n", cl->numberspec->\
- framep->level);
- if
- (!strcmp(cl->numberspec->framep->semester,"one")){
- cl->numberspec->framep->nextf=AllocateFrame();
- cl->numberspec->framep=cl->numberspec->framep->nextf;
- printf("\n\nFrame Allocated and linked to
- previous\n\n");
- } /* end of if */
-
- c = fgetc(fp); /* Read first character of next line */
- /* it can be @ or first letter of semester */
- } /* end of higher while with @,#,!feof(fp) */
-
- if (c == '@' && !feof(fp)){
- cl->numberspec->framep->nextf=(FRAME *)NULL;
- printf("\n\nFRAME == NULL\n\n");
-
- c = fgetc(fp); /* skip new line */
- c = fgetc(fp); /* get optional number */
-
- cl->numberspec->nextnumberspec=AllocateNumberSpec();
- printf("\n\nAllocated number spec and linked to
- previous one\n\n");
- cl->numberspec=cl->numberspec->nextnumberspec;
- printf("\n***the semester of the allocated is:
- [%s]\n\n",cl->numberspec->framep->semester);
- } /* end of if */
-
- } /* end of higher while with #,!feof(fp) */
-
- if (c == '#' && !feof(fp)){
- /* cl->numberspec->framep=(FRAME *)NULL;*/
- /* printf("\n\nStored NULL at end of frame\n\n");*/
- cl->numberspec=(NUMBER_SPEC *)NULL;
- printf("NUMBER SPEC == NULL\n");
- c = fgetc(fp); /* skip newline */
- c = fgetc(fp); /* get award */
- cl->nextc = AllocateCourse();
- cl = cl->nextc;
- } /* end of if */
- } /* end of higher while with !feof(fp) */
-
- /*cl->numberspec->framep=(FRAME *)NULL;*/
- /*printf("\n\nStored NULL in end of frame\n\n");*/
-
- topc->numberspec=topn;
- topc->numberspec->framep=topf;
-
- return topc;
- } /* end of function */
-
- ---------------------------------273939021825479831922172572
- Content-Transfer-Encoding: quoted-printable
- Content-Type: text/html
-
- <BASE HREF=3D"news:comp.lang.c">
-
- <BASE HREF=3D"news:">
- <A HREF=3D"newspost:comp.lang.c"><IMG ALT=3D"" BORDER=3D0 SRC=3D"internal-n=
- ews-post"></A><A HREF=3D"newscatchup:comp.lang.c"><IMG ALT=3D"" BORDER=3D0 =
- SRC=3D"internal-news-catchup-group"></A><A HREF=3D"news:comp.lang.c?ALL"><I=
- MG ALT=3D"" BORDER=3D0 SRC=3D"internal-news-show-all-articles"></A><A HREF=3D=
- "newsrc://news/?UNSUBSCRIBE=3Dcomp.lang.c"><IMG ALT=3D"" BORDER=3D0 SRC=3D"=
- internal-news-unsubscribe"></A><A HREF=3D"newsrc://news/"><IMG ALT=3D"" BOR=
- DER=3D0 SRC=3D"internal-news-go-to-newsrc"></A>
- <HR>
- <TITLE>Newsgroup: comp.lang.c</TITLE>
- <H1>Newsgroup: comp.lang.c</H1>
- <UL>
- <FONT SIZE=3D+1>(<A HREF=3D"comp.lang.c/149245-149345">Earliest articles</a=
- >...)<BR>
- (<A HREF=3D"comp.lang.c/151606-151705">Earlier articles</a>...)</FONT><p>
- <LI><A NAME=3D"4iroki$j1b@ferrari.NetXpress.com" HREF=3D"4iroki$j1b@ferrari=
- =2ENetXpress.com"><B>Re: Statistically Random Number algorithm</B> - Glenn =
- H. Porter</A> (11)
- <LI><A NAME=3D"4irokq$j1b@ferrari.NetXpress.com" HREF=3D"4irokq$j1b@ferrari=
- =2ENetXpress.com"><B>Re: Why does the "universal bugfunction" gets() surviv=
- e in 1996?</B> - Glenn H. Porter</A> (23)
- <LI><B> Rand() Function</B>
- <UL><LI><A NAME=3D"31518B67.3914@hsc.unt.edu" HREF=3D"31518B67.3914@hsc.unt=
- =2Eedu">Steve Fogoros</A> (43)
- <LI><A NAME=3D"4irqgu$gml@ccshst05.cs.uoguelph.ca" HREF=3D"4irqgu$gml@ccshs=
- t05.cs.uoguelph.ca">Toby K Hay</A> (11)
- </UL><LI><A NAME=3D"4irqjc$c2q@solutions.solon.com" HREF=3D"4irqjc$c2q@solu=
- tions.solon.com"><B>Re: is getopt() ANSI and portable ?</B> - Peter Seebach=
- </A> (25)
- <LI><A NAME=3D"4j749k$qs9@eiger.pncl.co.uk" HREF=3D"4j749k$qs9@eiger.pncl.c=
- o.uk"><B>Deleting lines from text files.</B> - Henry Audley-Charles</A> (1=
- 2)
- <LI><A NAME=3D"4irrl3$gr1@alterdial.UU.NET" HREF=3D"4irrl3$gr1@alterdial.UU=
- =2ENET"><B>Re: dBase Library</B> - Norman Jacobson</A> (22)
- <LI><A NAME=3D"4iro6s$2e9@nntp.interaccess.com" HREF=3D"4iro6s$2e9@nntp.int=
- eraccess.com"><B>Re: Help ! Please help me solve the problem</B> - Brian V.=
- McGroarty</A> (114)
- <LI><B> Beware of "C" Hackers -- A rebuttal to Bertrand Meyer</B>
- <UL><LI><A NAME=3D"4iri4d$4o5@henry.netaxis.com" HREF=3D"4iri4d$4o5@henry.n=
- etaxis.com">john p radigan</A> (34)
- <LI><A NAME=3D"4iens3$a75@solutions.solon.com" HREF=3D"4iens3$a75@solutions=
- =2Esolon.com">Peter Seebach</A> (43)
- <LI><A NAME=3D"4ieo12$a8j@solutions.solon.com" HREF=3D"4ieo12$a8j@solutions=
- =2Esolon.com">Peter Seebach</A> (19)
- <LI><A NAME=3D"4j26cn$gh7@solutions.solon.com" HREF=3D"4j26cn$gh7@solutions=
- =2Esolon.com">Peter Seebach</A> (18)
- <LI><A NAME=3D"4j2dgp$ik5@news4.digex.net" HREF=3D"4j2dgp$ik5@news4.digex.n=
- et">Ell</A> (10)
- </UL><LI><A NAME=3D"4irqg8$a8v@news.bridge.net" HREF=3D"4irqg8$a8v@news.bri=
- dge.net"><B>How do you code F keys for a windows program</B> - michael@brid=
- ge.net</A> (2)
- <LI><A NAME=3D"4j5vvl$359@isoit109.bbn.hp.com" HREF=3D"4j5vvl$359@isoit109.=
- bbn.hp.com"><B>Re: Please Read!!</B> - Nicolas TRIPON</A> (6)
- <LI><A NAME=3D"4irqse$aar@news.bridge.net" HREF=3D"4irqse$aar@news.bridge.n=
- et"><B>How to code F Keys in a windows program?</B> - michael@bridge.net</A=
- > (12)
- <LI><A NAME=3D"urquiola-1703962142150001@ronin.tiac.net" HREF=3D"urquiola-1=
- 703962142150001@ronin.tiac.net"><B>How to break in to Programming?</B> - Mi=
- chael Urquiola</A> (26)
- <UL><LI><A NAME=3D"DoG5Gq.KMJ@watserv3.uwaterloo.ca" HREF=3D"DoG5Gq.KMJ@wat=
- serv3.uwaterloo.ca">Carsten Whimster</A> (98)
- </UL><LI><B> operator % - compiler error</B>
- <UL><LI><A NAME=3D"4in0ih$o43@zeus.intellinet.com" HREF=3D"4in0ih$o43@zeus.=
- intellinet.com">Jerry Davis</A> (20)
- <LI><A NAME=3D"mjs.827423478@hubcap" HREF=3D"mjs.827423478@hubcap">M. J. Sa=
- ltzman</A> (24)
- </UL><LI><A NAME=3D"4irrf5$gr1@alterdial.UU.NET" HREF=3D"4irrf5$gr1@alterdi=
- al.UU.NET"><B>Re: WTD: Dbase Libraries for MSVC++</B> - Norman Jacobson</A>=
- (32)
- <LI><A NAME=3D"4j7dmo$30j@vivaldi.telepac.pt" HREF=3D"4j7dmo$30j@vivaldi.te=
- lepac.pt"><B>UNARJ SOUCE CODE HELP PLEASE - unarj.zip (0/1)</B> - VORTEX</A=
- > (8)
- <LI><A NAME=3D"21MAR199607580794@erich.triumf.ca" HREF=3D"21MAR199607580794=
- @erich.triumf.ca"><B>Re: Putting images from C on MSDOS screen</B> - P.Benn=
- ett</A> (25)
- <LI><A NAME=3D"31519DEF.639C@wall.scn.de" HREF=3D"31519DEF.639C@wall.scn.de=
- "><B>data segment</B> - Erdem Uysal</A> (2)
- <LI><B> Segmentation Fault ???</B>
- <UL><LI><A NAME=3D"4j8e8r$g30@niaomi.iscm.ulst.ac.uk" HREF=3D"4j8e8r$g30@ni=
- aomi.iscm.ulst.ac.uk">Shaunna McClintock</A> (6)
- <LI><A NAME=3D"4ie5sp$77c@hn.ocbbs.gen.nz" HREF=3D"4ie5sp$77c@hn.ocbbs.gen.=
- nz">Steve Detoni</A> (25)
- </UL><LI><A NAME=3D"31546CE1.1C18@BlueSky.net" HREF=3D"31546CE1.1C18@BlueSk=
- y.net"><B>Re: mathematical/statistical routines in Java</B> - Dan Jacobs</A=
- > (27)
- <LI><A NAME=3D"31546257.11E1@olympic.net" HREF=3D"31546257.11E1@olympic.net=
- "><B>Re: Assertive or Defensive?</B> - "Erik W. Anderson"</A> (12)
- <LI><A NAME=3D"4j1p3q$p2q@beyond.escape.com" HREF=3D"4j1p3q$p2q@beyond.esca=
- pe.com"><B>Help file?</B> - Mohan Khurana</A> (15)
- <LI><A NAME=3D"4j5mqr$su7@ohnasn01.sinet.slb.com" HREF=3D"4j5mqr$su7@ohnasn=
- 01.sinet.slb.com"><B>Re: DLL, VB and Borland C/C++</B> - Nick Primavesi</A>=
- (38)
- <LI><A NAME=3D"m.b.greenwood-2603961147330001@mac007016.shef.ac.uk" HREF=3D=
- "m.b.greenwood-2603961147330001@mac007016.shef.ac.uk"><B>Re: Please help me=
- </B> - Mike Greenwood</A> (64)
- <LI><A NAME=3D"Ev/Uxc9nXw3c083yn@mbnet.mb.ca" HREF=3D"Ev/Uxc9nXw3c083yn@mbn=
- et.mb.ca"><B>Re: Novice itoa question</B> - Nathan T. Wild</A> (14)
- <LI><A NAME=3D"Pine.A32.3.91.960317225340.19217I-100000@black.weeg.uiowa.ed=
- u" HREF=3D"Pine.A32.3.91.960317225340.19217I-100000@black.weeg.uiowa.edu"><=
- B>Re: printing PostScript-Code under Windows</B> - The Amorphous Mass</A> =
- (17)
- <LI><A NAME=3D"3156502C.56D7@simi.is" HREF=3D"3156502C.56D7@simi.is"><B>Re:=
- GOTO controversy</B> - Bj=F6rn Helgason</A> (51)
- <LI><A NAME=3D"danpop.826826852@rscernix" HREF=3D"danpop.826826852@rscernix=
- "><B>Re: Help !!!!! on 'strstr"</B> - Dan Pop</A> (91)
- <LI><A NAME=3D"314D6C50.2FE6@insa-rouen.fr" HREF=3D"314D6C50.2FE6@insa-roue=
- n.fr"><B>[Q]:Debugging unalocated memory</B> - Adam Machnik</A> (14)
- <LI><A NAME=3D"31485A6A.5101@oc.com" HREF=3D"31485A6A.5101@oc.com"><B>Re: [=
- Q]: Very Long Integer Library</B> - Larry Weiss</A> (10)
- <LI><A NAME=3D"4iee4h$a7u@news.xs4all.nl" HREF=3D"4iee4h$a7u@news.xs4all.nl=
- "><B>Re: Bizarre error with structures, please help!</B> - Falstaff</A> (7=
- 2)
- <LI><A NAME=3D"4ijpev$ev8@canopus.cc.umanitoba.ca" HREF=3D"4ijpev$ev8@canop=
- us.cc.umanitoba.ca"><B>Writing A Pointer To Memory</B> - Nathan T. Wild</A>=
- (26)
- <LI><A NAME=3D"4idjt4$4du@itsop2.its.brooklyn.cuny.edu" HREF=3D"4idjt4$4du@=
- itsop2.its.brooklyn.cuny.edu"><B>rand ?</B> - Daniel Zielinski</A> (4)
- <LI><A NAME=3D"4iegj7$evn@bee.uspnet.usp.br" HREF=3D"4iegj7$evn@bee.uspnet.=
- usp.br"><B>Example of an unintelligible program in C</B> - Carlos Eduardo D=
- antas de Menezes</A> (15)
- <UL><LI><A NAME=3D"3155FAE1.53C2@iadfw.net" HREF=3D"3155FAE1.53C2@iadfw.net=
- ">Larry Weiss</A> (27)
- </UL><LI><A NAME=3D"4iemks$a2b@solutions.solon.com" HREF=3D"4iemks$a2b@solu=
- tions.solon.com"><B>Re: C coding problem</B> - Mike McNelly</A> (11)
- <LI><A NAME=3D"4ie983$3v0@sparcserver.lrz-muenchen.de" HREF=3D"4ie983$3v0@s=
- parcserver.lrz-muenchen.de"><B>Re: String Question</B> - Kurt Watzka</A> (=
- 23)
- <LI><A NAME=3D"4iedqg$qdn@news5.erols.com" HREF=3D"4iedqg$qdn@news5.erols.c=
- om"><B>HELP! How can I create a file system in ram?</B> - Roger Winstanley<=
- /A> (12)
- <LI><A NAME=3D"DoGzp8.Lz0@champ.wnet.gov.edmonton.ab.ca" HREF=3D"DoGzp8.Lz0=
- @champ.wnet.gov.edmonton.ab.ca"><B>Newbie DDE Question</B> - rhart@wnet.gov=
- =2Eedmonton.ab.ca</A> (20)
- <LI><A NAME=3D"4ieov7$r5@lantana.singnet.com.sg" HREF=3D"4ieov7$r5@lantana.=
- singnet.com.sg"><B>Novice programmer needs help!</B> - XY Xie</A> (176)
- <LI><A NAME=3D"314ac1ef.49220064@nntp.ix.netcom.com" HREF=3D"314ac1ef.49220=
- 064@nntp.ix.netcom.com"><B>Re: Tradition or what?</B> - Mike Rubenstein</A>=
- (39)
- <LI><B> const pointer confusion...</B>
- <UL><LI><A NAME=3D"4j633k$3dp@solutions.solon.com" HREF=3D"4j633k$3dp@solut=
- ions.solon.com">Lawrence Kirby</A> (37)
- <LI><A NAME=3D"4j6346$3et@solutions.solon.com" HREF=3D"4j6346$3et@solutions=
- =2Esolon.com">The Amorphous Mass</A> (15)
- <LI><A NAME=3D"4j6354$3ge@solutions.solon.com" HREF=3D"4j6354$3ge@solutions=
- =2Esolon.com">Kurt Watzka</A> (104)
- <LI><A NAME=3D"4j6389$3iq@solutions.solon.com" HREF=3D"4j6389$3iq@solutions=
- =2Esolon.com">Kazimir Kylheku</A> (31)
- <LI><A NAME=3D"4j639l$3ju@solutions.solon.com" HREF=3D"4j639l$3ju@solutions=
- =2Esolon.com">Kazimir Kylheku</A> (59)
- </UL><LI><B> Recommend a book, REALLY!</B>
- <UL><LI><A NAME=3D"4j63a0$3kk@solutions.solon.com" HREF=3D"4j63a0$3kk@solut=
- ions.solon.com">Kazimir Kylheku</A> (43)
- <LI><A NAME=3D"4j634g$3fe@solutions.solon.com" HREF=3D"4j634g$3fe@solutions=
- =2Esolon.com">KDM</A> (43)
- </UL><LI><A NAME=3D"4j0llr$rvl@gap.cco.caltech.edu" HREF=3D"4j0llr$rvl@gap.=
- cco.caltech.edu"><B>longjmp/setjmp madness</B> - Mika Nystroem</A> (58)
- <LI><A NAME=3D"4j646k$ad0@news.xs4all.nl" HREF=3D"4j646k$ad0@news.xs4all.nl=
- "><B>Re: [Q] how to specify binary values</B> - Falstaff</A> (44)
- <LI><A NAME=3D"1996Mar26.163135.256@zippy.dct.ac.uk" HREF=3D"1996Mar26.1631=
- 35.256@zippy.dct.ac.uk"><B>[Q] Hide the cursor?</B> - THE BANDIT</A> (8)
- <LI><A NAME=3D"4j5o1s$nut@scctn01.sp.ac.sg" HREF=3D"4j5o1s$nut@scctn01.sp.a=
- c.sg"><B>Sorry, additional info</B> - ABC</A> (6)
- <LI><A NAME=3D"4j1rn3$19du@sol.caps.maine.edu" HREF=3D"4j1rn3$19du@sol.caps=
- =2Emaine.edu"><B>Problem with pointers</B> - Shawn Benn</A> (59)
- <LI><A NAME=3D"3156ab27.3285740@news.primenet.com" HREF=3D"3156ab27.3285740=
- @news.primenet.com"><B>Re: Help for beginner =A1=A1=A1pLease!!!</B> - Clayt=
- on Neff</A> (15)
- <LI><A NAME=3D"31550dec.549310@news" HREF=3D"31550dec.549310@news"><B>Looki=
- ng for an ASN.1 compiler</B> - Barry Edwards</A> (10)
- <LI><A NAME=3D"314DCB28.4385@micromedia.on.ca" HREF=3D"314DCB28.4385@microm=
- edia.on.ca"><B>Q: Pointer to an allocated array of structures</B> - Richard=
- Steadman</A> (58)
- <LI><A NAME=3D"4j6c8f$c4h@qns3.qns.com" HREF=3D"4j6c8f$c4h@qns3.qns.com"><B=
- >PROGRAMMING JOBS in the WWW Classified Ads</B> - H Robinson</A> (15)
- <LI><A NAME=3D"4j2eqf$7h3@panix.com" HREF=3D"4j2eqf$7h3@panix.com"><B>CURSE=
- S ORA sample wont work, why?</B> - Arthur Cinader Jr</A> (51)
- <LI><A NAME=3D"25MAR199607585494@erich.triumf.ca" HREF=3D"25MAR199607585494=
- @erich.triumf.ca"><B>Re: URGENT!: Need outportb() and inportb() functions!!=
- !</B> - P.Bennett</A> (26)
- <LI><A NAME=3D"Pine.A32.3.91.960323191614.20332E-100000@green.weeg.uiowa.ed=
- u" HREF=3D"Pine.A32.3.91.960323191614.20332E-100000@green.weeg.uiowa.edu"><=
- B>Re: Float to String</B> - The Amorphous Mass</A> (16)
- <LI><A NAME=3D"31584451.4A56@Ranger.uk" HREF=3D"31584451.4A56@Ranger.uk"><B=
- >Re: Beginer C please help me</B> - h</A> (47)
- <LI><A NAME=3D"4j6fjjINNc2p@keats.ugrad.cs.ubc.ca" HREF=3D"4j6fjjINNc2p@kea=
- ts.ugrad.cs.ubc.ca"><B>Re: binary tree question</B> - Kazimir Kylheku</A> =
- (88)
- <UL><LI><A NAME=3D"3156E113.34B0@oc.com" HREF=3D"3156E113.34B0@oc.com">Larr=
- y Weiss</A> (10)
- </UL><LI><A NAME=3D"4j6joa$6ve@muller.loria.fr" HREF=3D"4j6joa$6ve@muller.l=
- oria.fr"><B>scanf/gets interaction ?</B> - Denis B. Roegel</A> (20)
- <LI><A NAME=3D"315628F9.6E60@concentric.net" HREF=3D"315628F9.6E60@concentr=
- ic.net"><B>FAQ Location.</B> - RLC</A> (7)
- <UL><LI><A NAME=3D"25MAR199610123827@erich.triumf.ca" HREF=3D"25MAR19961012=
- 3827@erich.triumf.ca">P.Bennett</A> (14)
- </UL><LI><B> getting Unix's current running process id</B>
- <UL><LI><A NAME=3D"4j6jcv$ijd@spanky.pls.ov.com" HREF=3D"4j6jcv$ijd@spanky.=
- pls.ov.com">Fletcher.Glenn@ov.com</A> (14)
- <LI><A NAME=3D"bnelsonDoqx85.Cx4@netcom.com" HREF=3D"bnelsonDoqx85.Cx4@netc=
- om.com">Bob Nelson</A> (13)
- <LI><A NAME=3D"4j7c8f$bt5@solutions.solon.com" HREF=3D"4j7c8f$bt5@solutions=
- =2Esolon.com">Peter Seebach</A> (18)
- </UL><LI><A NAME=3D"31525489.7054@interramp.com" HREF=3D"31525489.7054@inte=
- rramp.com"><B>WAV format?</B> - Shai Shprung</A> (8)
- <LI><A NAME=3D"109.6658T1038T2813@xs4all.nl" HREF=3D"109.6658T1038T2813@xs4=
- all.nl"><B>(Quick|Merge)Sort</B> - Thomas van Gulick</A> (5)
- <LI><A NAME=3D"Dou5MB.LDH.0.-s@hkusuc.hku.hk" HREF=3D"Dou5MB.LDH.0.-s@hkusu=
- c.hku.hk"><B>Deque</B> - Fishing Club</A> (4)
- <LI><A NAME=3D"4j9k3v$j64@news.vanderbilt.edu" HREF=3D"4j9k3v$j64@news.vand=
- erbilt.edu"><B>Improved Web-Based C/C++ Indent</B> - Saveen Reddy</A> (19)=
-
- <LI><A NAME=3D"960325.141034.8759@banshee.uunet.ca" HREF=3D"960325.141034.8=
- 759@banshee.uunet.ca"><B>Re: Please help (640x480 and linear addressing)</B=
- > - Michael Babcock</A> (15)
- <LI><A NAME=3D"31a7cc$10b20.32c@NEWS" HREF=3D"31a7cc$10b20.32c@NEWS"><B>Is =
- there a problem using memset on a malloc'd memory in HP-C</B> - Jonathan Ju=
- lian</A> (16)
- <LI><A NAME=3D"4im3lh$ra9@rks1.urz.tu-dresden.de" HREF=3D"4im3lh$ra9@rks1.u=
- rz.tu-dresden.de"><B>Exel file format</B> - Lars Reuther</A> (23)
- <LI><A NAME=3D"4j2po8$36l@SNFC21_SRVR_WWW.PBI.net" HREF=3D"4j2po8$36l@SNFC2=
- 1_SRVR_WWW.PBI.net"><B>Re: C or MFC?</B> - mich@pbinet.com</A> (16)
- <LI><A NAME=3D"032596213027Rnf0.78@burk.muc.de" HREF=3D"032596213027Rnf0.78=
- @burk.muc.de"><B>Wanted: C/C++ tutorial</B> - Boris Schaeling</A> (5)
- <LI><A NAME=3D"3157899E.6CD@profline.nl" HREF=3D"3157899E.6CD@profline.nl">=
- <B>Q: Is Microsoft's Visual C & SDK best for developing c progs f W 3.11</B=
- > - Rik Assen</A> (13)
- <LI><A NAME=3D"4ik1rc$6l6@rs1.dsi.uanl.mx" HREF=3D"4ik1rc$6l6@rs1.dsi.uanl.=
- mx"><B>Re: read com port</B> - Felipe Rodriguez Hernandez</A> (25)
- <LI><A NAME=3D"4is3isINNhdf@keats.ugrad.cs.ubc.ca" HREF=3D"4is3isINNhdf@kea=
- ts.ugrad.cs.ubc.ca"><B>Re: Getting date in UNIX</B> - Kazimir Kylheku</A> =
- (44)
- <LI><A NAME=3D"4j79q5INNt27@keats.ugrad.cs.ubc.ca" HREF=3D"4j79q5INNt27@kea=
- ts.ugrad.cs.ubc.ca"><B>Re: String Problem</B> - Kazimir Kylheku</A> (33)
- <LI><A NAME=3D"4j992s$gcr@hpbblb.bbn.hp.com" HREF=3D"4j992s$gcr@hpbblb.bbn.=
- hp.com"><B>Re: Newbie doesn't understand compiler error</B> - Matthias Ditt=
- rich</A> (27)
- <LI><A NAME=3D"3152d883.184774812@nntp.ix.netcom.com" HREF=3D"3152d883.1847=
- 74812@nntp.ix.netcom.com"><B>Re: Wierd const problem (repost)</B> - Mike Ru=
- benstein</A> (45)
- <LI><B> C/C++ knocks the crap out of Ada</B>
- <UL><LI><A NAME=3D"4iup93$5d6@tpd.dsccc.com" HREF=3D"4iup93$5d6@tpd.dsccc.c=
- om">Kevin Cline</A> (26)
- <LI><A NAME=3D"4iupk7$5t4@tpd.dsccc.com" HREF=3D"4iupk7$5t4@tpd.dsccc.com">=
- Kevin Cline</A> (30)
- </UL><LI><A NAME=3D"314D8D4C.78D8@oak.westol.com" HREF=3D"314D8D4C.78D8@oak=
- =2Ewestol.com"><B>Re: HELP STILL NEEDED IN C</B> - Mark Kintigh</A> (19)
- <LI><A NAME=3D"Pine.A32.3.91.960322134158.23347A-100000@red.weeg.uiowa.edu"=
- HREF=3D"Pine.A32.3.91.960322134158.23347A-100000@red.weeg.uiowa.edu"><B>Re=
- : Borland C's tmpnam()</B> - The Amorphous Mass</A> (27)
- <UL><LI><A NAME=3D"3154C0DF.6E90@iadfw.net" HREF=3D"3154C0DF.6E90@iadfw.net=
- ">Larry Weiss</A> (30)
- </UL><LI><A NAME=3D"armckenz-1903961852330001@vyger712.nando.net" HREF=3D"a=
- rmckenz-1903961852330001@vyger712.nando.net"><B>borland 4.51 huge * struct =
- problem</B> - Ashley mckenzie</A> (34)
- <LI><A NAME=3D"Pine.A32.3.91.960322135639.23347C-100000@red.weeg.uiowa.edu"=
- HREF=3D"Pine.A32.3.91.960322135639.23347C-100000@red.weeg.uiowa.edu"><B>Re=
- : leap year</B> - The Amorphous Mass</A> (17)
- </UL><HR>
- <A HREF=3D"newspost:comp.lang.c"><IMG ALT=3D"" BORDER=3D0 SRC=3D"internal-n=
- ews-post"></A><A HREF=3D"newscatchup:comp.lang.c"><IMG ALT=3D"" BORDER=3D0 =
- SRC=3D"internal-news-catchup-group"></A><A HREF=3D"news:comp.lang.c?ALL"><I=
- MG ALT=3D"" BORDER=3D0 SRC=3D"internal-news-show-all-articles"></A><A HREF=3D=
- "newsrc://news/?UNSUBSCRIBE=3Dcomp.lang.c"><IMG ALT=3D"" BORDER=3D0 SRC=3D"=
- internal-news-unsubscribe"></A><A HREF=3D"newsrc://news/"><IMG ALT=3D"" BOR=
- DER=3D0 SRC=3D"internal-news-go-to-newsrc"></A>
- ---------------------------------273939021825479831922172572--
-